home *** CD-ROM | disk | FTP | other *** search
/ Postcard CD: Toronto / Postcard CD: Toronto (2004).iso / mac / IntroMov.dxr / Internal_12.ls < prev    next >
Encoding:
Text File  |  2002-01-03  |  763 b   |  27 lines

  1. global language
  2.  
  3. on exitFrame me
  4.   if language = 1 then
  5.     set the castLibNum of sprite 2 to castLib("english").number
  6.   else
  7.     if language = 2 then
  8.       set the castLibNum of sprite 2 to castLib("french").number
  9.     else
  10.       if language = 3 then
  11.         set the castLibNum of sprite 2 to castLib("german").number
  12.       else
  13.         if language = 4 then
  14.           set the castLibNum of sprite 2 to castLib("japanese").number
  15.           set the width of sprite 2 to the width of sprite 2 * 1
  16.           set the height of sprite 2 to the height of sprite 2 * 1
  17.         else
  18.           if language = 5 then
  19.             set the castLibNum of sprite 2 to castLib("spanish").number
  20.           end if
  21.         end if
  22.       end if
  23.     end if
  24.   end if
  25.   startTimer()
  26. end
  27.